home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
presto
/
prest1_0.lha
/
Tests
/
runtests.mips
< prev
next >
Wrap
Text File
|
1991-12-11
|
278b
|
21 lines
#! /bin/sh
TESTS="exer burner fork"
for test in $TESTS
do
cd $test
if [ -r ./runtests ] ; then
./runtests
status=$?
else
$test
status=$?
fi
if [ $status -eq 0 ] ; then
echo "\"$test\" completed successfully."
else
echo "\"$test\" failed."
fi
cd ..
done